home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / XL21HOS2.ZIP / FACT.LSP < prev    next >
Encoding:
Lisp/Scheme  |  1995-12-27  |  205 b   |  8 lines

  1. (defun fact (n)
  2.        (cond ((zerop n) 1)
  3.          ((= n 1) 1)
  4.          (t (* n (fact (- n 1))))))
  5. (defun facti (n &aux (v 1)) ;; Iterative version
  6.        (dotimes (i n) (setq v (* v (1+ i))))
  7.        v)
  8.